home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / rename11.zip / TESTC1.C < prev    next >
Text File  |  1991-08-31  |  533b  |  9 lines

  1. int     TESTC1( ) /*** TESTC1.C - SAMPLE FOR DEMONSTRATING RENAMER    */
  2. {  int   iStatus, iRC = 0;          /* The iStatus reference is not   */
  3.    int   my_Routine ( int );        /* changed since ReNamer only     */
  4.    int   Alpha, Stat;               /* transforms whole symbols.      */
  5.    Alpha = 5;
  6.    Stat = my_Routine ( Alpha * 4 ); /* STAT - NOTE: This comment will */
  7.    return( iRC );                   /* not be changed since the case  */
  8. }                                   /* doesn't match.                 */
  9.